home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 60 / Cine Live 60.iso / pc / Data / Interface / c3.k < prev    next >
Encoding:
Text File  |  2002-01-07  |  1.2 KB  |  53 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$00000135,$0000002A,$0000021F,$000003BF,$00000000,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$000001A3,$0000002E,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oMovie2
  16.     ];
  17. end;
  18.  
  19. object oMovie2 is cMPEGMovie
  20. with 
  21.     Flags is $00000054; 
  22.     Name is "Movie"; 
  23.     Cursor is oEmptyCursor; 
  24.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  25.     Width is 800; Height is 600; 
  26.     
  27.     URL is "data/Videos/pubgeode.mpg"; URLOption is GetDiskURL; 
  28.     Events is [
  29.         cOnscreenEvent
  30.         with Flags is $00000004; 
  31.             Commands is [
  32.                 cTokenCommand
  33.                 with TokenName is "stop"; Mode is ExecuteTargetUpwards; Target is oRoot1; end,
  34.                 cRunCommand
  35.                 with Target is oTargetSelf; Rewind is true; end
  36.             ];
  37.         end,
  38.         cMouseDownEvent
  39.         with Flags is $00000004; 
  40.             Commands is [
  41.                 cBrowseCommand
  42.                 with URL is "data/Interface/pubgen.k"; URLOption is GetDiskURL; end
  43.             ];
  44.         end,
  45.         cFinishedEvent
  46.         with Flags is $00000004; 
  47.             Commands is [
  48.                 cBrowseCommand
  49.                 with URL is "data/Interface/pubgen.k"; URLOption is GetDiskURL; end
  50.             ];
  51.         end
  52.     ];
  53. end;